home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 352_01 / strpppad.cpp < prev    next >
C/C++ Source or Header  |  1991-04-28  |  448b  |  21 lines

  1. // STRPPPAD.CPP - contains String::strpad()
  2. //        this is a 'slave routine' called by String::pad().
  3. //
  4. //        routine pads string with extra blanks out to length set by n
  5. //
  6. #include <stdlib.h>
  7. #include <string.h>
  8.  
  9. #include "dblib.h"
  10.  
  11.             
  12.  
  13. void String::strpad ( )
  14.     // pad string with blanks if needed.    
  15.     {
  16.     int sn=n;
  17.     char *ss=s;
  18.     if ( ss==NULL ) return;
  19.     for ( int i=strlen(ss); i<sn; ++i )  ss[i] =' ';
  20.     }    // end String::strpad()
  21.